IsWindowCollapsed
NEW WITH THE APPEARANCE MANAGER
Determines a window's collapse state.
pascal Boolean IsWindowCollapsed (WindowPtr inWindow);
inWindow
- On input, a pointer to the window whose collapse state you are determining.
- function result
- A Boolean value. If
true
, the window is collapsed. Iffalse
, the window is expanded.DISCUSSION
Only window definition functions that return the feature bitkWindowCanCollapse
in response to akWindowGetFeatures
message support this function; seeGetWindowFeatures
. Your window definition function should callIsWindowCollapsed
to determine whether or not a window is collapsed, so you can modify its structure and content regions as appropriate. Typically, a window's content region is empty in a collapsed state.SEE ALSO
"Appearance Manager Gestalt Selector Constants".